home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / write.hlp < prev    next >
Text File  |  1989-11-12  |  1KB  |  23 lines

  1. WRITE (expr{,...,expr});           Output ASCII processed data file
  2.  
  3. The WRITE procedure outputs a time tag and successive values calculated
  4. for each 'expr' in WRITE's calling parameters to whatever system file
  5. has been specified by the last FILE control statement.  If an X axis
  6. file has been specified then the "time tag" for each associated value
  7. is the corresponding X axis file value.  One time tag value is output
  8. at the start of each line followed by values for each 'expr'.  The
  9. line is then terminated with carriage return and line feed ASCII codes.
  10.  
  11. One header record is output followed by however many data records it
  12. takes to hold all the data values and associated time tags.  Output
  13. records contain ASCII values so the files can be transferred to systems
  14. that do not use compatible floating point numbers.  The Output File
  15. Record Structures section in your manual gives the format for each of
  16. these record types.
  17.  
  18. The READ function is capable of processing a file created by the WRITE
  19. procedure.
  20.  
  21. The XFORMAT and YFORMAT controls affect the format of the time tag and
  22. data value fields, respectively.
  23.